SearchInResponseBodyRequest

data class SearchInResponseBodyRequest(requestId: RequestId, query: String, caseSensitive: Boolean?, isRegex: Boolean?)

Represents request frame that can be used with Network#searchInResponseBody operation call.

Searches for given string in response content.

See also

Constructors

SearchInResponseBodyRequest
Link copied to clipboard
fun SearchInResponseBodyRequest(requestId: RequestId, query: String, caseSensitive: Boolean? = null, isRegex: Boolean? = null)

Properties

caseSensitive
Link copied to clipboard
val caseSensitive: Boolean? = null
If true, search is case sensitive.
isRegex
Link copied to clipboard
val isRegex: Boolean? = null
If true, treats string parameter as regex.
query
Link copied to clipboard
val query: String
String to search for.
requestId
Link copied to clipboard
val requestId: RequestId
Identifier of the network response to search.

Sources

jvm source
Link copied to clipboard